From 18e7d777a2b49ad8a00ddb37c6f94f87bca4f299 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Timm=20B=C3=A4der?= Date: Sat, 9 Dec 2017 16:21:19 +0100 Subject: [PATCH] gl renderer: Move declarations to the beginning of the block --- gsk/gl/gskglrenderer.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/gsk/gl/gskglrenderer.c b/gsk/gl/gskglrenderer.c index c71d065641..9f76a7e787 100644 --- a/gsk/gl/gskglrenderer.c +++ b/gsk/gl/gskglrenderer.c @@ -384,18 +384,18 @@ render_text_node (GskGLRenderer *self, ops_set_texture (builder, gsk_gl_glyph_cache_get_glyph_image (&self->glyph_cache, glyph)->texture_id); - { - tx = glyph->tx; - ty = glyph->ty; - tx2 = tx + glyph->tw; - ty2 = ty + glyph->th; + tx = glyph->tx; + ty = glyph->ty; + tx2 = tx + glyph->tw; + ty2 = ty + glyph->th; - glyph_x = x + cx + glyph->draw_x; - glyph_y = y + cy + glyph->draw_y; - glyph_w = glyph->draw_width; - glyph_h = glyph->draw_height; + glyph_x = x + cx + glyph->draw_x; + glyph_y = y + cy + glyph->draw_y; + glyph_w = glyph->draw_width; + glyph_h = glyph->draw_height; - GskQuadVertex vertex_data[GL_N_VERTICES] = { + { + const GskQuadVertex vertex_data[GL_N_VERTICES] = { { { glyph_x, glyph_y }, { tx, ty }, }, { { glyph_x, glyph_y + glyph_h }, { tx, ty2 }, }, { { glyph_x + glyph_w, glyph_y }, { tx2, ty }, }, -- 2.30.2